home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows News 2006 October
/
wn148cd2.iso
/
Windows
/
Travailler
/
QuickZip
/
quickzip_460013.exe
/
{app}
/
Scripts
/
File
/
Add With Password.akp
< prev
next >
Wrap
Text File
|
2005-06-28
|
318b
|
14 lines
var p : TStrings;
i : integer;
k : string;
begin
p := Param;
open(ChangeFileExt(p.strings[0],'.zip'));
k := Readln('Please enter password');
Password(k);
for i := 0 to p.count -1 do
add(p.strings[i]);
if k <> '' then begin DoAdd; application.terminate; end else
Showmessage('Cancelled');
end.